-
Notifications
You must be signed in to change notification settings - Fork 133
feat(audit_trail): add new data source audit_trail_event #3445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #3445 +/- ##
=========================================
- Coverage 1.78% 1.77% -0.01%
=========================================
Files 401 403 +2
Lines 44084 44205 +121
=========================================
- Hits 786 784 -2
- Misses 43211 43333 +122
- Partials 87 88 +1 ☔ View full report in Codecov by Sentry. |
a2394cc to
fe22129
Compare
51a35a1 to
93bf6a6
Compare
93bf6a6 to
2f056d3
Compare
f5a6215 to
12845fc
Compare
0039116 to
982f867
Compare
defd74e to
a8b738e
Compare
875627d to
6f717c3
Compare
6f717c3 to
0d4595d
Compare
| return nil, "", err | ||
| } | ||
| // In audit trail sdk-go so far only fr-par and nl-ams are supported | ||
| if !slices.Contains(api.Regions(), region) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would prefer not to send an error from the provider side. In case we add new regions and the provider is not yet updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed! i removed this check ✔️
#3427